word rank | frequency | word |
---|---|---|
1 | 361966 | the |
2 | 249361 | and |
3 | 217990 | of |
4 | 216844 | to |
5 | 157321 | a |
6 | 135624 | in |
7 | 102413 | is |
8 | 86780 | for |
9 | 63210 | on |
word rank | frequency | word |
---|---|---|
10 | 62235 | with |
20 | 36493 | from |
30 | 25679 | it |
40 | 16711 | also |
50 | 11484 | they |
60 | 10075 | but |
70 | 9111 | were |
80 | 7896 | through |
90 | 7425 | first |
word rank | frequency | word |
---|---|---|
100 | 6476 | range |
200 | 3464 | free |
300 | 2373 | times |
400 | 1910 | current |
500 | 1629 | away |
600 | 1424 | Association |
700 | 1263 | legal |
800 | 1125 | maintenance |
900 | 1014 | difficult |
word rank | frequency | word |
---|---|---|
1000 | 927 | nature |
2000 | 482 | Level |
3000 | 307 | Joe |
4000 | 217 | Large |
5000 | 163 | potentially |
6000 | 127 | didn’t |
7000 | 104 | fighting |
8000 | 86 | ICU |
9000 | 73 | UL |
word rank | frequency | word |
---|---|---|
10000 | 63 | Left |
20000 | 22 | Lough Allen |
30000 | 12 | guest house |
40000 | 7 | EirGrid |
50000 | 5 | Re-Use |
60000 | 4 | herbalised |
70000 | 3 | Valero |
80000 | 2 | BelErne |
90000 | 2 | Rutherford |
word rank | frequency | word |
---|---|---|
100000 | 2 | monk's |
200000 | 1 | post card |
Words from different frequency regions are shown. For simplicity, the words with rank k10n, k=1,2,…,9; n=0,1,…, are chosen. In the case n=0 we see the 10 most frequent words, of course.
The tables provide words with fixed rank which might be useful for several comparisons. The average word should get longer with its rank.
For meaningful words at higher ranks we need at least medium a sized corpus.
For rank 1000, 2000, …, 9000:
set @k=3;
select w_id-100 as rank, freq, word from where w_id-100 in (1*pow(10,@k),2*pow(10,@k), 3*pow(10,@k),4*pow(10,@k),5*pow(10,@k), 6*pow(10,@k),7*pow(10,@k),8*pow(10,@k), 9*pow(10,@k)) order by rank;
3.2.1. The most frequent 50 words